home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / stdio / bug2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-18  |  223 b   |  13 lines

  1. #include <ansidecl.h>
  2. #include <stdio.h>
  3.  
  4. int
  5. DEFUN_VOID(main)
  6. {
  7.   int i;
  8.   puts ("This should print \"wow = I\" for I from 0 to 39 inclusive.");
  9.   for (i = 0; i < 40; i++)
  10.     printf ("%s = %d\n", "wow", i);
  11.   return 0;
  12. }
  13.